@extends ('layouts.app') @section ('content')
@include('partials.messages') {!! Form::model($supplier, array('route' => ['suppliers.update', Hashids::encode($supplier->id, 10)], 'method' => 'GET' ) ) !!} {!! csrf_field() !!} @include('suppliers.partials.form') {!! Form::submit('Update', array('class' => 'btn btn-tabletpos btn-cons m-t-10') ) !!} {!! Form::close() !!}
@stop