@extends('umrah.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('umrah.layouts.partials._alert')

{{App\Language::trans('Detail Form')}}

{!! Form::label('name', App\Language::trans('Name'), ['class'=>'control-label col-md-4']) !!}

{{$model->name}}

{{App\Language::trans('Address Information')}}

{!! Form::label('address', App\Language::trans('Address'), ['class'=>'control-label col-md-4']) !!}

{{$model->address}}

{!! Form::label('postcode', App\Language::trans('Postcode'), ['class'=>'control-label col-md-4']) !!}

{{$model->postcode}}

{!! Form::label('country_id', App\Language::trans('Country'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('country','name')}}

{!! Form::label('state_id', App\Language::trans('State'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('state','name')}}

{!! Form::label('city_id', App\Language::trans('City'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('city','name')}}

{{App\Language::trans('Contact Information')}}

{!! Form::label('contact_person', App\Language::trans('Contact Person'), ['class'=>'control-label col-md-4']) !!}

{{$model->contact_person}}

{!! Form::label('email', App\Language::trans('Email'), ['class'=>'control-label col-md-4']) !!}

{{$model->email}}

{!! Form::label('tel', App\Language::trans('Tel'), ['class'=>'control-label col-md-4']) !!}

{{$model->tel}}

{!! Form::label('mobile', App\Language::trans('Mobile'), ['class'=>'control-label col-md-4']) !!}

{{$model->mobile}}

{!! Form::label('website', App\Language::trans('Website'), ['class'=>'control-label col-md-4']) !!}

{{$model->website}}

{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_status_string('status')}}

{!! Form::close() !!} @endsection @section('script') @endsection