17 lines
518 B
PHP
17 lines
518 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="page-content">
|
|
<div class="container-fluid">
|
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
|
|
|
{{ html()->form('POST')->id('storeUpdateForm')->route('estimate.store')->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data'])->open() }}
|
|
|
|
@include('estimate::estimate.partials.action')
|
|
|
|
{{ html()->form()->close() }}
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|