@extends('enduserportal::layouts.portal') @section('title', __('Log In')) @section('content')

{{ __('Log In') }}

@if (!empty($result) && $result['result'] == 'error' && $result['message'])
{!! $result['message'] !!}
@endif @if (!empty($result) && $result['result'] == 'success' && $result['message'])
{!! $result['message'] !!}
@else
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@action('enduserportal.login.before_submit')
@endif
@endsection