@extends ('backend.layouts.app') @section ('title', __('city::labels.backend.city.management') . ' | ' . __('city::labels.backend.city.create')) @section('breadcrumb-links') @include('city::includes.breadcrumb-links') @endsection @push('after-styles') @endpush @section('content') {{ html()->form('POST', route('admin.city.store'))->class('form-horizontal')->open() }}

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


{{ html()->label(__('city::labels.backend.city.table.name').' *')->class('col-md-2 form-control-label')->for('name') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('city::labels.backend.city.table.name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.users.active').' *')->class('col-md-2 form-control-label')->for('active') }}
{{ html()->closeModelForm() }} @endsection @push('after-scripts') @endpush