@extends('layouts.frontend') @section('styles') @endsection @section('content')

{!! trans('panel.login.site_title') !!}

{{ trans('global.customer_login') }}

@if(session('message')) @endif
@csrf
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if(Route::has('frontend.password.request')) @endif
@endsection