@extends('layouts.masterLayout.app') @section('content')

Edit Service Provider

@csrf @method('PUT')
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('area'))
{{ $errors->first('area') }}
@endif
@if($errors->has('working_hour'))
{{ $errors->first('working_hour') }}
@endif
@endsection