mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
7e57b0f2fd
* Minify js and css * Refactor master layout
44 lines
833 B
PHP
44 lines
833 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@section('head')
|
|
@parent
|
|
<link rel="stylesheet" href="//cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css">
|
|
<script src="//cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js"></script>
|
|
<script src="//cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js"></script>
|
|
@endsection
|
|
|
|
@section('body')
|
|
|
|
<main class="main">
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('clients.edit', $client) }}
|
|
|
|
<div class="container-fluid" >
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
|
|
{{ html()->form('PUT', route('signup.submit'))->open() }}
|
|
|
|
<example-component></example-component>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ html()->form()->close() }}
|
|
</div>
|
|
|
|
</main>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|