@extends('layouts.dashbord') @section('title', 'Home Page') @section('content')
@if ($errors->has('error'))
@endif

Add Agency

Company Details

@csrf
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('zip_code')) {{ $errors->first('zip_code') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if ($errors->has('tracker_url')) {{ $errors->first('tracker_url') }} @endif
@if ($errors->has('lead_cost')) {{ $errors->first('lead_cost') }} @endif
@if ($errors->has('credit')) {{ $errors->first('credit') }} @endif
@endsection