@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.userAccount.title_singular') }}
@if(session()->has('message'))

{{ session()->get('message') }}

@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.userAccount.fields.name_helper') }}
@if($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif {{ trans('cruds.userAccount.fields.phone_no_helper') }}
@if($errors->has('email')) {{ $errors->first('email') }} @endif {{ trans('cruds.userAccount.fields.email_helper') }}
@if($errors->has('user_type')) {{ $errors->first('user_type') }} @endif {{ trans('cruds.userAccount.fields.user_type_helper') }}
@if($errors->has('eiin')) {{ $errors->first('eiin') }} @endif {{ trans('cruds.userAccount.fields.eiin_helper') }}
@if($errors->has('pdsid')) {{ $errors->first('pdsid') }} @endif {{ trans('cruds.userAccount.fields.pdsid_helper') }}
@if($errors->has('index_no ')) {{ $errors->first('index_no ') }} @endif
@if($errors->has('suid')) {{ $errors->first('suid') }} @endif {{ trans('cruds.userAccount.fields.suid_helper') }}
@if($errors->has('year')) {{ $errors->first('year') }} @endif
@if($errors->has('class_id')) {{ $errors->first('class_id') }} @endif
@if($errors->has('zila_id')) {{ $errors->first('zila_id') }} @endif
@if($errors->has('upazila_id')) {{ $errors->first('upazila_id') }} @endif
@if($errors->has('role')) {{ $errors->first('role') }} @endif
@if($errors->has('password')) {{ $errors->first('password') }} @endif {{ trans('cruds.userAccount.fields.password_helper') }}
@if($errors->has('permission_access_modules')) {{ $errors->first('permission_access_modules') }} @endif {{ trans('cruds.userAccount.fields.permission_access_modules_helper') }}
@foreach(App\Models\UserAccount::LOGIN_ALLOWED_RADIO as $key => $label)
@endforeach @if($errors->has('login_allowed')) {{ $errors->first('login_allowed') }} @endif {{ trans('cruds.userAccount.fields.login_allowed_helper') }}
@endsection @section('scripts') @endsection