@extends('Centaur::layout') @section('title', 'Edit User') @section('content')

Edit User

{!! ($errors->has('first_name') ? $errors->first('first_name', '

:message

') : '') !!}
{!! ($errors->has('last_name') ? $errors->first('last_name', '

:message

') : '') !!}
{!! ($errors->has('email') ? $errors->first('email', '

:message

') : '') !!}
Roles
@foreach ($roles as $role)
@endforeach
{!! ($errors->has('password') ? $errors->first('password', '

:message

') : '') !!}
{!! ($errors->has('password_confirmation') ? $errors->first('password_confirmation', '

:message

') : '') !!}
@stop