1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/client/edit.blade.php

65 lines
1.0 KiB
PHP
Raw Normal View History

@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