Шинээр нэмэх
{{ Form::open(['method' => 'post', 'url' => '/admin/contact', 'files' => true]) }}
{{ Form::label('lang_id', 'Хэл') }}
{{ $errors->has('lang_id') ? $errors->first('lang_id') : '' }}
{{ Form::label('facebook', 'Facebook') }}
{{ Form::text('facebook', Input::get('facebook'), ['class' => 'form-control', 'placeholder' => 'Facebook']) }}
{{ $errors->has('facebook') ? $errors->first('facebook') : '' }}
{{ Form::label('twitter', 'Twitter') }}
{{ Form::text('twitter', Input::get('twitter'), ['class' => 'form-control', 'placeholder' => 'Twitter']) }}
{{ $errors->has('twitter') ? $errors->first('twitter') : '' }}
{{ Form::label('youtube', 'Youtube') }}
{{ Form::text('youtube', Input::get('youtube'), ['class' => 'form-control', 'placeholder' => 'Youtube']) }}
{{ $errors->has('youtube') ? $errors->first('youtube') : '' }}
{{ Form::label('phone', 'Утас') }}
{{ Form::text('phone', Input::get('phone'), ['class' => 'form-control', 'placeholder' => 'Утас']) }}
{{ $errors->has('phone') ? $errors->first('phone') : '' }}
{{ Form::label('email', 'И-мэйл') }}
{{ Form::email('email', Input::get('email'), ['class' => 'form-control', 'placeholder' => 'И-мэйл']) }}
{{ $errors->has('email') ? $errors->first('email') : '' }}
{{ Form::label('website', 'Вэб сайт') }}
{{ Form::text('website', Input::get('website'), ['class' => 'form-control', 'placeholder' => 'Вэб сайт']) }}
{{ $errors->has('website') ? $errors->first('website') : '' }}
{{ Form::label('address', 'Дэлгэрэнгүй мэдээлэл') }}
{{ $errors->has('address') ? $errors->first('address') : '' }}
{{ Form::submit('Хадгалах', ['class' => 'btn btn-primary']) }}