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

INV Zone insert and update inv zone

@endsection @section('main-content')

Entry

{!! Form::open(['url' => '/admin/customer-order-notification-tag-edit/' .$invZone->id]) !!}
{!! Form::label('Tag Name') !!} {!! Form::text('tag_name', $invZone->tag_name, ['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'], isset($invZone->status) ? $invZone->status : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection