@if(session('message'))
@if(session('message.type')=='danger')
Sorry! {!! session('message.text') !!}
@else
Success! {!! session('message.text') !!}
@endif
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('role_id'))
{{ $errors->first('role_id') }}
@endif