@extends('admin.master') @section('content')

Update Mission

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@method('put') @csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('descriptions'))
{{ $errors->first('descriptions') }}
@endif
@endsection