@extends('app') @section('content')
@include('flash::message')
{!! Html::image('images/logo.png', 'hilbit') !!}
@if (session('verify'))

Account successfully verified, now you can login.

@endif
{!! csrf_field() !!}
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection