@extends('layouts.admin') @section('content') @push('css') {{-- dropzone --}} @endpush
Admin Create
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('user_account')) {{ $errors->first('user_account') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('role')) {{ $errors->first('role') }} @endif
@if ($errors->has('team')) {{ $errors->first('team') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@if ($errors->has('department_id')) {{ $errors->first('department_id') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@push('alljs') @endpush @endsection