@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')

{{ @$data['title'] }}

@csrf
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@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('total_employee'))
{{ $errors->first('total_employee') }}
@endif
@if ($errors->has('business_type'))
{{ $errors->first('business_type') }}
@endif
@if ($errors->has('trade_licence_number'))
{{ $errors->first('trade_licence_number') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@endsection @section('script') @endsection