@extends('owner.layouts.master') @section('page_title', __('admin.Edit :name' , ['name' => __('admin.Property Profile')])) @section('page_heading', __('admin.Edit :name' , ['name' => __('admin.Property Profile')])) @section('page_text', __('admin.Edit :name' , ['name' => __('admin.Property Profile')])) @section('content')
{!! Form::model($propertyprofile, ['method' => 'PATCH','route' => ['owner.propertyprofile.update', $propertyprofile->id], 'files' => true]) !!}
{!! Form::text('url', $propertyprofile->url, array('required'=>'required','placeholder' => $propertyprofile->url,'class' => 'form-control')) !!}
{!! Form::text('primary_color', $propertyprofile->primary_color, array('required'=>'required','placeholder' => $propertyprofile->primary_color,'class' => 'form-control' , 'id' => 'primary')) !!}
{!! Form::text('secondary_color', $propertyprofile->secondary_color, array('required'=>'required','placeholder' => $propertyprofile->secondary_color,'class' => 'form-control input-lg' , 'id' => 'secondary')) !!}
{!!Form::file('logo', array('class' => 'form-control input-lg'))!!}
{!! Form::textarea('bio', $propertyprofile->bio, ['class' => 'form-control','id'=>'editor']) !!}
@lang('admin.Cancel')
{!! Form::close() !!}
@push('stylesheets') @endpush @endsection @push('script') @endpush