@extends('layouts.master') @section('title', 'Create User') @section('content')
Back to Users
Create New User
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{csrf_field()}}

Copyright © Melsoft (Private) Limited

@endsection @section('styles') @endsection