@extends('layouts.app') @section('content')
@if(\Session::has('message'))

{{ \Session::get('message') }}

@endif
{{ csrf_field() }}

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

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

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