@extends('layout.app') @section('title','Create Client') @push('header_script') @endpush @section('content')
{!! Form::open(['route' => ['client.store'], 'onsubmit'=>'BtnSubmit.disabled = true', 'class'=>'row g-3 needs-validation', 'method' => 'post','autocomplete'=>'off','files'=>true]) !!}
{{$errors->first('name')}}
{{$errors->first('company_name')}}
{{$errors->first('mobile_no')}}
{{$errors->first('email_id')}}
Login Details
{{$errors->first('email')}}
{{$errors->first('password')}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush