@extends('layout.common') @if ($page=='E') @section('title', 'Evaluator Log In') @elseif ($page=='A') @section('title', 'Administrator Log In') @elseif ($page=='M') @section('title', 'Moderator Log In') @endif @section('description', null) @section('keywords', null) @section('content')
@if ($page=='E')

Evaluator Log In

@elseif ($page=='A')

Administrator Log In

@elseif ($page=='M')

Moderator Log In

@endif
{{ Form::open(array('url'=>route('auth.store'),'method'=>'post','id'=>'create-account-form','autocomplete'=>'off')) }} {{ Form::hidden('url', $url) }} {{ Form::hidden('page', $page) }}
{{ Form::email('email',Input::old('email'),array('id'=>'email','class'=>'form-control','placeholder'=>'Email')) }}
{{ Form::password('password',array('id'=>'password','class'=>'form-control','placeholder'=>'Password')) }}
{{ Form::checkbox('remember_me','true',null,array('class'=>'form-checkbox-control')) }} Remember me
{{ Form::submit('Sıgn In',array('class'=>'btn btn-lg btn-default btn-block')) }}
{{ Form::close() }}
@endsection