@extends('layouts.auth') @section('content') {!! Form::open(['route' => 'user.auth.login']) !!}

تسجيل الدخول

@if(Session::has('danger-message'))
@endif @if(Session::has('success-message'))
@endif
{!! Form::label('البريد الإلكتروني') !!} {!! Form::text('email', null, ['type' => 'email', 'class' => 'form-control', 'placeholder' => 'البريد الإلكتروني']) !!} @if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('كلمة المرور') !!} {!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'كلمة المرور']) !!} @if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if(setting('enable_fast_login_using_udid')) @endif
@if(setting('allow_new_users'))
@endif
{!! Form::close() !!} @endsection