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

Create House

Create House Form

@csrf
@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($errors->has('thumbnail'))

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

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

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

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