@extends('layouts.app') @section('content')
{{ Form::open([ 'route' => 'clients.store', 'class' => 'form' ]) }}
Add Client
{{ Form::submit('+ Add Client', ['class' => 'btn btn--primary form__btn d-none d-xl-flex']) }}
@include('clients.form') {{ Form::submit('+ Add Client', ['class' => 'btn btn--primary form__btn d-xl-none']) }} {{ Form::close() }}
@endsection