@extends('layouts.admin') @section('content')
{{ trans('global.create') }} Board Officer
@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('pdsid')) {{ $errors->first('pdsid') }} @endif {{ trans('cruds.userAccount.fields.pdsid_helper') }}
@if ($errors->has('board_id')) {{ $errors->first('division_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