@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@if (url()->current() == route('client.create'))
@else @endif @csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('website'))
{{ $errors->first('website') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if ($errors->has('zip'))
{{ $errors->first('zip') }}
@endif
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
@if ($errors->has('gst'))
{{ $errors->first('gst') }}
@endif
@endsection @section('script') @endsection