@extends('layouts.app') @section('title') {{__('messages.client.add_client')}} @endsection @section('content') @php $styleCss = 'style'; @endphp
@include('flash::message')
@include('layouts.errors')
{{ Form::open(['route' => 'clients.store','files' => 'true','id'=>'clientForm']) }} @include('clients.fields') {{ Form::close() }}
{{ Form::hidden('is_edit', false ,['id' => 'isEdit']) }} {{ Form::hidden('default_avatar_image_url', asset('assets/images/avatar.png'),['id' => 'defaultAvatarImageUrl']) }} {{ Form::hidden('country_id', old('country_id'),['id' => 'clientCountryId']) }} {{ Form::hidden('state_id', old('state_id') ,['id' => 'clientStateId']) }} {{ Form::hidden('city_id', old('city_id') ,['id' => 'clientCityId']) }} @endsection @section('phone_js') @endsection