{!! 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']) !!}