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

INV Zone insert and update inv zone

@endsection @section('main-content')

Entry

{!! Form::open(['method' => 'PUT', 'url' => '/admin/inv-zones/' .$invZone->inv_zone_id]) !!}
{!! Form::label('Name') !!} {!! Form::text('inv_zone_name', $invZone->inv_zone_name, ['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('inv_zone_name')) {!! $errors->first('inv_zone_name') !!}@endif
{!! Form::label('Code') !!} {!! Form::text('inv_zone_code', $invZone->inv_zone_code, ['class' => 'form-control', 'placeholder' => 'Code']) !!} @if ($errors->has('inv_zone_code')) {!! $errors->first('inv_zone_code') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('inv_zone_is_exist', [1 => 'Active', 0 => 'Inactive'], isset($invZone->inv_zone_is_exist) ? $invZone->inv_zone_is_exist : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection