{{--synced with serve--}} @extends('admin.template.master') @section('stylesheets') @endsection @section('title')

INV IP Setting

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif @if(Session::has('error'))
{{Session('error')}}
@endif

{!! Form::open(['url' => '/admin/inventory-ip-setting', 'method'=>'post' , 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('IP') !!} {!! Form::text('ip', $det->ip, ['class' => 'form-control', 'placeholder' => 'IP', 'id' => 'ip' ]) !!} @if ($errors->has('ip')) {!! $errors->first('ip') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') @endsection