{{--synced with serve--}} @extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

{{$branchPickupLocationDetail->branch_name}} - Branch Profile

@endsection @section('main-content')

Edit

{!! Form::open(['method' => 'POST','url' => '/admin/branch-profile/edit/'. $profile->id, 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Slug') !!} {!! Form::text('slug', $profile->slug , ['class' => 'form-control', 'placeholder' => 'Slug', 'id' => 'slug']) !!} @if ($errors->has('slug')) {!! $errors->first('slug') !!}@endif
{!! Form::label('Description') !!} {!! Form::textarea('description', $profile->description, ['class' => 'form-control', 'placeholder' => 'Description', 'id' => 'description']) !!} @if ($errors->has('description')) {!! $errors->first('description') !!}@endif
{!! Form::label('Meta Title') !!} {!! Form::text('meta_title', $profile->meta_title , ['class' => 'form-control', 'placeholder' => 'Meta Title', 'id' => 'meta_title']) !!} @if ($errors->has('meta_title')) {!! $errors->first('meta_title') !!}@endif
{!! Form::label('Meta Keyword') !!} {!! Form::text('meta_keyword', $profile->meta_keyword , ['class' => 'form-control', 'placeholder' => 'Meta Keyword', 'id' => 'meta_keyword']) !!} @if ($errors->has('meta_keyword')) {!! $errors->first('meta_keyword') !!}@endif
{!! Form::label('Meta Description') !!} {!! Form::textarea('meta_description', $profile->meta_description, ['class' => 'form-control', 'placeholder' => 'Meta Description', 'id' => 'meta_description']) !!} @if ($errors->has('meta_description')) {!! $errors->first('meta_description') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection