@extends('layouts.main') @section('container')

Edit Listing

{!! csrf_field() !!}
@foreach($fetch as $data)
@if ($errors->has('listing_header'))
{{ $errors->first('listing_header') }}
@endif
@if ($errors->has('property'))
{{ $errors->first('property') }}
@endif
@if ($errors->has('property_type'))
{{ $errors->first('property_type') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('built_up'))
{{ $errors->first('built_up') }}
@endif
{{----}}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
 
@if ($errors->has('address_lat'))

Address Location Required*

@endif
@endforeach


*Note: ALl Field Required

@stop