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

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

@endif
{{ csrf_field() }}

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

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