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

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


{{ html()->label(__('pushnoti::labels.backend.pushnoti.table.title').'*')->class('col-md-2 form-control-label')->for('title') }}
{{ html()->text('title') ->class('form-control') ->placeholder(__('pushnoti::labels.backend.pushnoti.table.title')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('pushnoti::labels.backend.pushnoti.table.url'))->class('col-md-2 form-control-label')->for('url') }}
{{ html()->text('url_path') ->class('form-control') ->placeholder(__('pushnoti::labels.backend.pushnoti.table.url')) ->attribute('maxlength', 191) }}
{{ html()->label(__('pushnoti::labels.backend.pushnoti.table.message').'*')->class('col-md-2 form-control-label')->for('message') }}
{{ html()->textarea('message') ->class('form-control editor') ->placeholder(__('pushnoti::labels.backend.pushnoti.table.message')) ->required() }}
{{ html()->closeModelForm() }} @endsection @push('after-scripts') @endpush