@extends('layouts.backend') @section('extra_css') @endsection @section('extra_js') @endsection @section('content')

{{ Session::get('message') }}

Create User

{{ csrf_field() }}
{{ $errors->has('name') ? $errors->first('name'):''}}
{{ $errors->has('role') ? $errors->first('role'):''}}
{{ $errors->has('email') ? $errors->first('email'):''}}
{{ $errors->has('password') ? $errors->first('password'):''}}
{{ $errors->has('password_confirmation') ? $errors->first('password_confirmation'):''}}
@endsection