@extends('layouts.admin') @section('title','Dashboard') @section('css') @endsection @section('breadcrumb', 'Services') @section('content')
{{$service->id == ''?"Add": "Edit"}} Services
@csrf
@if ($errors->has('serviceName')) {{$errors->first('serviceName')}} @endif
@if ($errors->has('fr_serviceName')) {{$errors->first('fr_serviceName')}} @endif
@if ($errors->has('serviceDescription')) {{$errors->first('serviceDescription')}} @endif
@if ($errors->has('fr_serviceDescription')) {{$errors->first('fr_serviceDescription')}} @endif
@if ($errors->has('serviceAddress')) {{$errors->first('serviceAddress')}} @endif
@if ($errors->has('fr_serviceAddress')) {{$errors->first('fr_serviceAddress')}} @endif
@if($service->id != '') @method('put') @endif
@endsection @section('js') @endsection