@extends('layouts.app') @section('content')
New Post
@csrf
Branch Information
@if ($errors->has('branch_name'))
{{ $errors->first('branch_name') }}
@endif
@if ($errors->has('client'))
{{ $errors->first('client') }}
@endif
@if ($errors->has('branch_address'))
{{ $errors->first('branch_address') }}
@endif
Contact Person Information
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('telephone_number'))
{{ $errors->first('telephone_number') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@section('script') @endsection @endsection