@extends('admin.layout.master') @section('content-header') Manage Users Add User @stop @section('content') Add User {{ csrf_field() }} First Name * @if ($errors->has('name')) {{ $errors->first('name') }} @endif last Name * @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif Email * @if ($errors->has('email')) {{ $errors->first('email') }} @endif Password * @if ($errors->has('password')) {{ $errors->first('password') }} @endif Confirm Password * @stop @section('javascript') @stop