@extends('admin.layout.master') @section('content-header')

Manage Users Add User

@stop @section('content')

Add User

{{ csrf_field() }}
* @if ($errors->has('name')) {{ $errors->first('name') }} @endif
* @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
* @if ($errors->has('email')) {{ $errors->first('email') }} @endif
* @if ($errors->has('password')) {{ $errors->first('password') }} @endif
*
@stop @section('javascript') @stop