@extends('layouts.auth') @section('title') {{ trans_choice('general.login',1) }} @endsection @section('content')
@if(Session::has('flash_notification.message')) @endif @if (isset($msg))
{{ $msg }}
@endif @if (isset($error))
{{ $error }}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @section('footer-scripts') @endsection