@extends('layouts.master') @section('title') Chandra Peer Review | Profile @stop @section('content')
@if(Auth::check())

Admin Profile

Welcome to your admin page, {!! $user->first !!} {!! $user->last !!}.
As an admin, you can manage the reviewers database from your dashboard.

@if(count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Your Contact Information

{!! Form::open( ['url' => 'admin', 'method' => 'post'] ) !!}
{!! Form::label('first','First Name') !!} {!! Form::text('first', $user->first, ['class' => 'form-control'] ) !!}
{!! Form::label('last','Last Name') !!} {!! Form::text('last', $user->last, ['class' => 'form-control'] ) !!}
{!! Form::label('email','Email') !!} {!! Form::text('email', $user->email, ['class' => 'form-control'] ) !!}
{!! Form::submit('Update My Info', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif
@stop