@extends('frontend.layouts.app-advisor') @section('after-styles') @endsection @section('content')

Manage Clients - Create Client

{{ Form::open(['route' => 'frontend.user.clients.store', 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'id' => 'client_form', 'role' => 'form', 'method' => 'post']) }}
@if ($errors->any())
@foreach ($errors->all() as $error) {!! $error !!}
@endforeach
@endif
{{ Form::label('Select Client Type', 'Select Client Type', ['class' => 'col-lg-12']) }}
{{ link_to_route('frontend.user.clients.index', trans('buttons.general.cancel'), [], ['class' => 'button_back dash_button left']) }} {{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'main_button dash_button right']) }}
{{ Form::close() }}
@endsection @section('after-scripts') {{ Html::script('js/backend/access/users/script.js') }} @endsection