@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.requestDatabase.title_singular') }}
@csrf
@if($errors->has('requester')) {{ $errors->first('requester') }} @endif {{ trans('cruds.requestDatabase.fields.requester_helper') }}
@if($errors->has('request_date')) {{ $errors->first('request_date') }} @endif {{ trans('cruds.requestDatabase.fields.request_date_helper') }}
@foreach(App\Models\RequestDatabase::REQUEST_APPROVAL_RADIO as $key => $label)
@endforeach @if($errors->has('request_approval')) {{ $errors->first('request_approval') }} @endif {{ trans('cruds.requestDatabase.fields.request_approval_helper') }}
@if($errors->has('date_of_request_approval_denial')) {{ $errors->first('date_of_request_approval_denial') }} @endif {{ trans('cruds.requestDatabase.fields.date_of_request_approval_denial_helper') }}
@if($errors->has('request')) {{ $errors->first('request') }} @endif {{ trans('cruds.requestDatabase.fields.request_helper') }}
@if($errors->has('if_other_above_specify')) {{ $errors->first('if_other_above_specify') }} @endif {{ trans('cruds.requestDatabase.fields.if_other_above_specify_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('technical_requests')) {{ $errors->first('technical_requests') }} @endif {{ trans('cruds.requestDatabase.fields.technical_request_helper') }}
@if($errors->has('request_location')) {{ $errors->first('request_location') }} @endif {{ trans('cruds.requestDatabase.fields.request_location_helper') }}
@if($errors->has('request_duration')) {{ $errors->first('request_duration') }} @endif {{ trans('cruds.requestDatabase.fields.request_duration_helper') }}
@endsection @section('scripts') @endsection