@extends('Layouts.authAdminLayout') @section('title') {{__('Login')}} @endsection @section('content')
{{(isset($settings['site_title_'.$lang]))?$settings['site_title_'.$lang]:''}}

{{__('Login')}}

{{__('Welcome Back Please Login To Your Account')}}

@CSRF
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{__('Remember Me')}}
@endsection