@extends('layouts.app') @section('style') @endsection @section('content')
Update Character Reference
@csrf {{-- Character Reference --}}

Character Reference

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('company'))
{{ $errors->first('company') }}
@endif
@if ($errors->has('company_address'))
{{ $errors->first('company_address') }}
@endif
@section('script') @endsection @endsection