@extends('layouts.master') @section('title') {{ __('custom_fields') }} @endsection @section('content')

{{ __('create').' '.__('form_fields') }}

@csrf
{!! Form::text('name', null, ['required', 'placeholder' => __('name'), 'class' => 'form-control','onkeypress' => 'return ((event.charCode > 64 && event.charCode < 91) || (event.charCode > 96 && event.charCode < 123) || event.charCode == 8 || event.charCode == 32 || (event.charCode >= 48 && event.charCode <= 57));']) !!}

{{ __('list') . ' ' . __('form_fields') }}

{{ __('id') }} {{ __('no.') }} {{ __('for') }} {{ __('name') }} {{ __('type') }} {{ __('is').' '.__('required') }} {{ __('default').' '.__('values') }} {{ __('rank') }} {{ __('action') }}
{{ __('draggable_rows_notes') }}
{{-- Preview Parent Fields --}} {{-- Preview Teacher Fields --}} {{-- Preview Online Registration Fields --}} @endsection @section('script') @endsection