@extends('layouts.account')
@section('title')
{{ trans('user::auth.login') }} | @parent
@stop
@section('content')
{{ trans('user::auth.sign in welcome message') }}
@include('partials.notifications')
{!! Form::open(['route' => 'login.post']) !!}
{!! $errors->first('email', ':message') !!}
{!! $errors->first('password', ':message') !!}
{{ trans('user::auth.forgot password') }}
@if (config('asgard.user.config.allow_user_registration'))
{{ trans('user::auth.register')}}
@endif
@stop