@extends('layouts.frontend') @section('title', 'User Login') @section('content')
Sign In
@include('flash::message') @if(Session::get('success'))
{{Session::get('success')}}
@endif @if(Session::get('failure'))
{{Session::get('failure')}}
@endif
{!! csrf_field() !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
Don't have an account! Sign Up Here
@include('slices.frontend.right_sidebar')
@endsection