@extends('admin.master') @section('content')

Update Content

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@method('put') @csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('location'))
{{ $errors->first('title') }}
@endif
@if($errors->has('fb_page'))
{{ $errors->first('fb_page') }}
@endif
@if($errors->has('fb_group'))
{{ $errors->first('fb_group') }}
@endif
@endsection