@extends('layouts.auth.default') @section('content')
{!! csrf_field() !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if(env('APP_DEMO',false))
Admin

User: admin@demo.com | Password: 123456

Manager

User: manager@demo.com | Password: 123456

Client

User: client@demo.com | Password: 123456

@endif
@if(setting('enable_facebook',false) || setting('enable_google',false) || setting('enable_twitter',false)) @endif

{{__('auth.forgot_password')}}

{{__('auth.register_new_member')}}

@endsection