@extends('adminsection.layouts.master') @section('title') Create New User || @parent @stop @section('page-title') @if(!$user->id) Create New User @else Edit {{$user->name}} @endif @stop @section('main-content')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf

@stop @section('js') @parent @stop