@extends('layouts.login') @section('title', 'Login') @section('content')

Login To Your Account

@if(Session::has('message'))

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

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

Register Now

Already have an account? Login

@endsection