@extends('layouts.mainadmin') @section('title') تسجيل دخول @stop @section('content')
@if ($errors->has()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @if (Session::has('status'))

{{ Session::get('status') }}

@endif

تسجيل دخول

{{ Form::open(['url'=>'admin/vlogin','login','POST']) }}
{{ Form::label('username', 'اسم المستخدم',['class'=>'control-label visible-ie8 visible-ie9']) }}
{{ Form::text('username', null, ['placeholder' => 'اسم المستخدم', 'class' => 'form-control placeholder-no-fix']) }}
{{ Form::label('password', 'كلمه المرور',['class'=>'control-label']) }}
{{ Form::password('password', ['placeholder' => 'Password', 'class'=>'form-control placeholder-no-fix']) }}

{{ Form::submit('دخول', ['class' => 'btn btn green']) }} أسترجاع كلمة المرور
{{ Form::close() }}
@stop