@extends ('backend.layouts.app') @section ('title', __('customer::labels.backend.customer.management') . ' | ' . __('customer::labels.backend.customer.create')) @section('breadcrumb-links') @include('customer::includes.breadcrumb-links') @endsection @push('after-styles') {{ style("assets/plugins/select2/css/select2.min.css") }} {{ style("assets/plugins/select2/css/select2-bootstrap.min.css") }} {{ style("assets/plugins/bootstrap-datepicker/dist/css/bootstrap-datepicker.css") }} @endpush @section('content') {{ html()->form('POST', route('admin.customer.store'))->class('form-horizontal')->open() }}

{{ __('customer::labels.backend.customer.management') }} {{ __('customer::labels.backend.customer.create') }}


{{ html()->label(__('customer::labels.backend.customer.table.name').' *')->class('col-md-2 form-control-label')->for('name') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('customer::labels.backend.customer.table.name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('customer::labels.backend.customer.table.mobile').' *')->class('col-md-2 form-control-label')->for('mobile') }}
{{ html()->text('mobile') ->class('form-control') ->placeholder(__('customer::labels.backend.customer.table.mobile')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('customer::labels.backend.customer.table.nrc').' *')->class('col-md-2 form-control-label')->for('nrc') }}
{{ html()->text('nrc') ->class('form-control') ->placeholder(__('customer::labels.backend.customer.table.nrc')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('customer::labels.backend.customer.table.dob'))->class('col-md-2 form-control-label')->for('dob') }}
{{ html()->text('dob') ->class('form-control date') ->placeholder(__('customer::labels.backend.customer.table.dob')) ->attribute('maxlength', 191) ->attribute('readonly', true) }}
{{ html()->label(__('customer::labels.backend.customer.table.city').'*')->class('col-md-2 form-control-label')->for('city') }}
{{ html()->label(__('customer::labels.backend.customer.table.township').'*')->class('col-md-2 form-control-label')->for('township') }}
{{ html()->label(__('customer::labels.backend.customer.table.address').' *')->class('col-md-2 form-control-label')->for('address') }}
{{ html()->textarea('address') ->class('form-control') ->placeholder(__('customer::labels.backend.customer.table.address')) ->required() }}
{{ html()->label(__('customer::labels.backend.customer.table.gender').' *')->class('col-md-2 form-control-label')->for('gender') }}
{{ html()->label(__('validation.attributes.backend.access.users.timezone'))->class('col-md-2 form-control-label')->for('timezone') }}

Account Informations

{{ html()->label(__('validation.attributes.backend.access.users.email').' *')->class('col-md-2 form-control-label')->for('email') }}
{{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.users.email')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.users.password').' *')->class('col-md-2 form-control-label')->for('password') }}
{{ html()->password('password') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.users.password')) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.users.password_confirmation').' *')->class('col-md-2 form-control-label')->for('password_confirmation') }}
{{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.users.password_confirmation')) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.users.active'))->class('col-md-2 form-control-label')->for('active') }}
{{ html()->label(__('validation.attributes.backend.access.users.confirmed'))->class('col-md-2 form-control-label')->for('confirmed') }}
@if (! config('access.users.requires_approval'))
{{ html()->label(__('validation.attributes.backend.access.users.send_confirmation_email') . '
' . '' . __('strings.backend.access.users.if_confirmed_off') . '')->class('col-md-2 form-control-label')->for('confirmation_email') }}
@endif
{{ html()->closeModelForm() }} @endsection @push('after-scripts') {{ script('assets/plugins/select2/js/select2.full.min.js')}} {{ script("assets/plugins/select2/component/components-select2.js") }} {{ script('assets/plugins/bootstrap-datepicker/dist/js/bootstrap-datepicker.js')}} @endpush