@extends('admin.partials.layout') @section('css') @endsection @section('content')

Edit House

Edit House Form

@csrf @method('PUT')
@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if($errors->has('type'))

{{ $errors->first('type') }}

@endif
@if($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if($model->thumbnail) @endif @if($errors->has('thumbnail'))

{{ $errors->first('thumbnail') }}

@endif
@if($errors->has('short_description'))

{{ $errors->first('short_description') }}

@endif
@endsection @section('js') @endsection