@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title','Push Notification') @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => 'pushnotification.store', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('title', 'Title', ['class' => 'col-4 control-label text-right']) !!} *
{!! Form::text('title', null, ['class' => 'form-control','placeholder'=> 'Title', "required"=>"true"]) !!}
Title
{!! Form::label('description', 'Description', ['class' => 'col-4 control-label text-right']) !!} *
{!! Form::textarea('description', null, ['class' => 'form-control','placeholder'=> 'Description', "required"=>"true"]) !!}
Description
{!! Form::label('message_content', 'Inside Message Description', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::textarea('message_content', null, ['class' => 'form-control','placeholder'=> 'Inside Message Description']) !!}
Inside Message Description
{!! Form::label('status','Type', ['class' => 'col-4 control-label text-right']) !!} *
Type
{!! Form::label('image', 'Any File', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('url', 'Any Site URL', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush