@extends('admin.layouts.app')
@section('title', 'Create User')
@section('page-title', 'Create User')
@section('content')
Create New User
@if ($errors->any())
Validation Errors:
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection