@extends('layouts.app') @section('script') @endsection @section('content') @if (session('status'))
{{ session('status') }}
@endif @if (session('info'))
{{ session('info') }}
@endif @if (session('warning'))
{{ session('warning') }}
@endif

Application for TCC

@csrf
@if ($errors->has('tin')) {{ $errors->first('tin') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('business')) {{ $errors->first('business') }} @endif
@if ($errors->has('sole_trade_licence')) {{ $errors->first('sole_trade_licence') }} @endif
@if ($errors->has('sole_trade_code')) {{ $errors->first('sole_trade_code') }} @endif
@if ($errors->has('officer')) {{ $errors->first('officer') }} @endif
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
@if ($errors->has('trade_licence')) {{ $errors->first('trade_licence') }} @endif
@if ($errors->has('trade_code')) {{ $errors->first('trade_code') }} @endif
Close
@endsection