@extends('layouts.auth.default') @section('content')

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

{!! csrf_field() !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if (config('installer.demo_app'))
Admin
User: admin@demo.com | Password: 123456
Clinic Owner
User: clinic@demo.com | Password: 123456
Customer
User: customer@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