@extends('layouts.app') @section('content') @include('includes.header')
@include('flash::message')
{{__('Employer Login')}}
{{__('Or login with your account')}}
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{__('Forgot Your Password')}}? {{__('Click here')}}
{{__('New User')}}? {{__('Register Here')}}
@include('includes.footer') @endsection