mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
1ad857bac9
* client ui * Paddin out client detail view * Padding out clients * Padding out clients * show maps * Padding out clients * fixes for migrations * client padding * Working on different Client UX * more client ux * New Client UI * Vue Scaffolding
65 lines
1.0 KiB
PHP
65 lines
1.0 KiB
PHP
@extends('layouts.master')
|
|
|
|
@section('head')
|
|
<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('header')
|
|
@include('header', $header)
|
|
|
|
@parent
|
|
@endsection
|
|
|
|
|
|
@section('sidebar')
|
|
@include('sidebar')
|
|
@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>
|
|
|
|
|
|
|
|
@include('dashboard.aside')
|
|
|
|
@endsection
|
|
|
|
@section('footer')
|
|
@include('footer')
|
|
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|