@extends('super_admins.layouts.master') @section('title') Add User @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Add User

{{--
--}}

Add User

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('profile_image_path')) {{ $errors->first('profile_image_path') }} @endif
@if(isset($roles))
@if ($errors->has('role')) {{ $errors->first('role') }} @endif
@endif

{{--
--}}
@endsection @section('scripts') @endsection