40 lines
896 B
PHP
40 lines
896 B
PHP
@extends('layout.index', [
|
|
'title' => 'Lots',
|
|
'subtitle' => 'Edition d\'un lot',
|
|
'breadcrumb' => ['Lots']
|
|
])
|
|
|
|
@include('boilerplate::load.icheck')
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@prepend('js')
|
|
@include('components.js', ['js' => '/js/main.min.js'])
|
|
@endprepend
|
|
|
|
@push('css')
|
|
@include('components.css', ['css' => '/css/main.min.css'])
|
|
@endpush
|
|
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Hestimmo.Lots.update', 'id' => 'lot-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 mbl">
|
|
<a href="{{ route("Hestimmo.Lots.index") }}" class="btn btn-default">
|
|
{{ __('lots.list.title') }}
|
|
</a>
|
|
|
|
<span class="btn-group pull-right">
|
|
@include('components.button-save')
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="id" value="{{ $id }}">
|
|
@include('Hestimmo.modules.Lot.lot_form')
|
|
</form>
|
|
|
|
@endsection
|