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

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

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

{{$model->email}}

@else {!! Form::text('email', null, ['class'=>'form-control','required']) !!} @endif {!!$errors->first('email', '')!!}
{!! Form::label('store_id', App\Language::trans('Store'), ['class'=>'control-label col-md-4']) !!}
{!! Form::select('store_id', App\Store::combobox(), null, ['class'=>'form-control']) !!} {!!$errors->first('store_id', '')!!}
{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('status', '')!!}
{!! Form::close() !!} @endsection @section('script') @endsection