@extends('layouts.master') @section('title', 'Login') @section('right-nav') @endsection @section('sidebar') @endsection @section('content')
{{ trans('strings.login') }}
@if (count($errors) > 0)
{{ trans('strings.whoops') }}! {{ trans('auth.errorencountered') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach (Alert::getMessages() as $type => $messages) @foreach ($messages as $message) @endforeach @endforeach
{!! csrf_field() !!}
@endsection