@extends('admin.template.master') @section('title')

Customer order notification tag insert Customer order notification tag

@endsection @section('main-content')

Entry

{!! Form::open(['url' => 'admin/customer-order-notification-tag-create']) !!}
{!! Form::label('Tag Name') !!} {!! Form::text('tag_name', null, ['class' => 'form-control', 'placeholder' => 'Tag Name']) !!} @if ($errors->has('tag_name')) {!! $errors->first('tag_name') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('status', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection